std::priority_queue::operator=

From Cppreference

Jump to: navigation, search
​priority_queue<T, Container>&
operator=( const priority_queue<T,Container>& other );
(1)
​priority_queue<T, Container>&
operator=( priority_queue<T,Container>&& other );
(2) (C++0x)

Replaces the contents of the container adaptor with those of other.

1) Copy assignment operator. Replaces the contents with a copy of the contents of other. Effectively calls ​c = other.c;. (implicitly declared)

2) Move assignment operator. Replaces the contents with those of other using move semantics. Effectively calls ​c = std::move(other.c); (implicitly declared)

Contents

Parameters

other - another container adaptor to be used as source

Return value

*this​

Complexity

See also

(constructor)
constructs the priority_queue
(public member function)
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox
In other languages